home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Libraries / App / Includes / UDebugView.h < prev    next >
Encoding:
Text File  |  1996-04-03  |  783 b   |  40 lines  |  [TEXT/MPS ]

  1. // UDebugView.h
  2. // Copyright © 1984-96 by Apple Computer, Inc. All rights reserved.
  3.  
  4. #ifndef __UDEBUGVIEW__
  5. #define __UDEBUGVIEW__
  6.  
  7. #if qDebug
  8.  
  9. // MacApp
  10.  
  11. #ifndef __UVIEW__
  12. #include "UView.h"
  13. #endif
  14.  
  15. //----------------------------------------------------------------------------------------
  16. // class TDebugFlagsView:
  17. //----------------------------------------------------------------------------------------
  18.  
  19. class TDebugFlagsView : public TView
  20. {
  21.     MA_DECLARE_CLASS;
  22.     
  23. public: // methods
  24.  
  25.     TDebugFlagsView();
  26.         // Constructor
  27.     virtual ~TDebugFlagsView();
  28.         // Destructor
  29.             
  30.     virtual void DoEvent(EventNumber eventNumber,
  31.                          TEventHandler* source,
  32.                          TEvent* event);
  33.                                 
  34.     virtual void DoPostCreate(TDocument* itsDocument);
  35. };
  36.  
  37. #endif // qDebug
  38.  
  39. #endif // __UDEBUGVIEW__
  40.